home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / xgui / sources / d3_fonts.ph < prev    next >
Encoding:
Text File  |  1994-04-25  |  1.1 KB  |  44 lines

  1. /*****************************************************************************
  2.   FILE           : d3_fonts.ph
  3.   SHORTNAME      : fonts.ph
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : private header
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Ralf Huebner
  10.   DATE           : 
  11.  
  12.   CHANGED BY     : Sven Doering
  13.   IDENTIFICATION : @(#)d3_fonts.ph    1.6 3/2/94
  14.   SCCS VERSION   : 1.6
  15.   LAST CHANGE    : 3/2/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.  
  19. ******************************************************************************/
  20. #ifndef _D3FONTS_DEFINED_
  21. #define _D3FONTS_DEFINED_
  22.  
  23. /* begin global definition section */
  24.  
  25. void d3_select_font (int selected_font);
  26. void d3_get_font_size (int *x, int *y);
  27. void d3_draw_string (int xpos, int ypos, float zpos, char *s);
  28.  
  29. /* end global definition section */
  30.  
  31. /* begin private definition section */
  32.  
  33. static void draw_char (int xpos, int ypos, unsigned char ch);
  34. static void draw_zbuffered_char (int xpos, int ypos, float zpos, unsigned char ch);
  35.  
  36. static int width, height;
  37. static char *font;
  38.  
  39. /* end private definition section */
  40.  
  41. #endif 
  42. /* end of file */
  43. /* lines: 27 */
  44.